[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Computes the difference of this set with another set. The difference of these two sets
is all items that appear in this set, but not in otherSet. A new set is
created with the difference of the sets and is returned. This set and the other set
are unchanged.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public Set<T> Difference( Set<T> otherSet ) |
Visual Basic (Declaration) |
---|
Public Function Difference ( _ otherSet As Set(Of T) _ ) As Set(Of T) |
Visual C++ |
---|
public: Set<T>^ Difference ( Set<T>^ otherSet ) |
Parameters
- otherSet
- Set<(Of <T>)>
Set to difference with.
Return Value
The difference of the two sets.Remarks
The difference of two sets is computed in time O(N), where N is the size of the smaller set.
Exceptions
Exception | Condition |
---|---|
System..::InvalidOperationException | This set and otherSet don't use the same method for comparing items. |
See Also
Set<(Of <T>)> Class
Wintellect.PowerCollections Namespace